type internal/runtime/maps.ctrl

22 uses

	internal/runtime/maps (current package)
		group.go#L22: 	ctrlEmpty   ctrl = 0b10000000
		group.go#L23: 	ctrlDeleted ctrl = 0b11111110
		group.go#L122: type ctrl uint8
		group.go#L129: func (g *ctrlGroup) get(i uintptr) ctrl {
		group.go#L131: 		return *(*ctrl)(unsafe.Add(unsafe.Pointer(g), 7-i))
		group.go#L133: 	return *(*ctrl)(unsafe.Add(unsafe.Pointer(g), i))
		group.go#L137: func (g *ctrlGroup) set(i uintptr, c ctrl) {
		group.go#L139: 		*(*ctrl)(unsafe.Add(unsafe.Pointer(g), 7-i)) = c
		group.go#L142: 	*(*ctrl)(unsafe.Add(unsafe.Pointer(g), i)) = c
		map.go#L592: 	g.ctrls().set(i, ctrl(h2(hash)))
		runtime.go#L335: 					g.ctrls().set(i, ctrl(h2Hash))
		runtime_fast32.go#L188: 	g.ctrls().set(i, ctrl(h2(hash)))
		runtime_fast32.go#L308: 				g.ctrls().set(i, ctrl(h2Hash))
		runtime_fast32.go#L442: 				g.ctrls().set(i, ctrl(h2Hash))
		runtime_fast64.go#L189: 	g.ctrls().set(i, ctrl(h2(hash)))
		runtime_fast64.go#L309: 				g.ctrls().set(i, ctrl(h2Hash))
		runtime_fast64.go#L365: 	g.ctrls().set(i, ctrl(h2(hash)))
		runtime_fast64.go#L482: 				g.ctrls().set(i, ctrl(h2Hash))
		runtime_faststr.go#L256: 	g.ctrls().set(i, ctrl(h2(hash)))
		runtime_faststr.go#L379: 				g.ctrls().set(i, ctrl(h2Hash))
		table.go#L352: 			g.ctrls().set(i, ctrl(h2Hash))
		table.go#L415: 			g.ctrls().set(i, ctrl(h2(hash)))